From: Glenn Morris Date: Fri, 20 Feb 2009 06:08:57 +0000 (+0000) Subject: (Fskip_chars_forward): Fix doc typo. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~421^2~1669 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=8a331049f526d42e251aa54d9cd87b67677bd778;p=emacs.git (Fskip_chars_forward): Fix doc typo. --- diff --git a/src/syntax.c b/src/syntax.c index f50649e41e9..494bd16f8c0 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -1353,7 +1353,7 @@ DEFUN ("skip-chars-forward", Fskip_chars_forward, Sskip_chars_forward, 1, 2, 0, doc: /* Move point forward, stopping before a char not in STRING, or at pos LIM. STRING is like the inside of a `[...]' in a regular expression except that `]' is never special and `\\' quotes `^', `-' or `\\' - (but not as the end of a range; quoting is never needed there). + (but not at the end of a range; quoting is never needed there). Thus, with arg "a-zA-Z", this skips letters stopping before first nonletter. With arg "^a-zA-Z", skips nonletters stopping before first letter. Char classes, e.g. `[:alpha:]', are supported.